home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / SCRIPTZ / GUESS.ZIP / guess.txt
Text File  |  1997-02-03  |  1KB  |  40 lines

  1.  
  2. This script is part of bazBot v1.8 made by Ronny 1996 (C)
  3. the carrent script was made by baz-oo-ka.
  4.  
  5. All you need to do is to add the folowing in to the indicated section of tools
  6.  
  7. To start the game just type "/game1" and the script will do the rest!
  8.  
  9. Aliases:
  10.  
  11. /game1 {
  12.   set %main $r(1,100) 
  13.   echo 4 the chosen number is:  %main 
  14.   notice $chan Guess my stupid number game has began!
  15.   notice $chan to guess my number type `Guess number
  16.   notice $chan guess the stupid number game will be over in 5 minutes so move your ass and hurry up!!
  17.   enable #guess | timer8 1 300 /loser
  18. }
  19. /loser {
  20.   notice $chan umm sorry dudes!! but you LOST!!! HaHaHaHa!!!
  21.   notice $chan the number was  [ $+ [ %main ] $+ ]  (Doh!)
  22.   notice $chan welp.. better luck next time =)
  23.   disable #guess
  24. }
  25. /winner {
  26.   notice $chan Game Over!! Winner: %win , Losers: the rest!!
  27.   disable #guess | /timer8 off
  28. }
  29.  
  30. Remote Events:
  31.  
  32. #guess start
  33. 1:on text:`guess*:#: {
  34.   if ($parm2 == $null) { notice $chan $nick had no guess specified }
  35.   elseif ($parm2 < %main) { notice $chan umm $nick $+ ? , sorry but you guesst to ╗Low½ }
  36.   elseif ($parm2 > %main) { notice $chan umm $nick $+ ? , sorry but you guesst to ╗High½ }
  37.   elseif ($parm2 == %main) { notice $chan umm $nick $+ ? , thats right!! the number is  $+ %main $+  YOU WON!!!!!! | /set %win $nick | winner }
  38. }
  39. #guess end
  40.